home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Applications / GeoConverter 1.1 ƒ / READ ME < prev   
Encoding:
Text File  |  1994-09-28  |  6.5 KB  |  110 lines  |  [TEXT/EDIT]

  1.  
  2.  
  3. GEO CONVERTER v. 1.1
  4. Copyright©1993,1994 by Kenneth Hill
  5.  
  6. This program is shareware. If you use Geo Converter please send $5.00 to Ken Hill,
  7. c/o Waverley Ground Search and Rescue, Waverley, Nova Scotia, Canada, B0N 2S0. All
  8. fees will be used by this volunteer SAR team in its task of finding lost people and
  9. providing children's woodsproofing to the public.
  10.  
  11. Geo Converter may be distributed freely, so long as it is unaltered and accompanied by
  12. this text file. Comments, questions, and bug reports can be emailed to the author at
  13. khill@husky1.stmarys.ca . Registered users can request, through email, a description
  14. of the formulas and simplified versions of the source code. Registered users will also
  15. be notified through email of updates to Geo Converter, as well as announcements of
  16. similar software.
  17.  
  18. DISCLAIMOR:
  19. GEO CONVERTOR IS PROVIDED AS IS, WITHOUT ANY WARRANTY OR GUARANTEE AS TO ITS USEABILITY
  20. OR FITNESS FOR ANY GIVEN PURPOSE, IMPLIED OR OTHERWISE. THE AUTHOR ASSUMES NO 
  21. RESPONSIBILITY FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF GEO CONVERTOR,
  22. INCLUDING, WITHOUT LIMITATION, INCIDENTAL, CONSEQUENTIAL, INDIRECT, OR SPECIAL DAMAGES
  23. OF ANY KIND. IN OTHER WORDS: USE IT AT YOUR OWN RISK!
  24.  
  25. DESCRIPTION:
  26. Geo Converter translates between two map coordinate systems, longitude/latitude and 
  27. Universal Transverse Mercator (UTM). It uses the Clarke 1866 spheroid, which has been
  28. adopted by Canada and the U.S. (except Hawaii). As different countries use different
  29. spheroids (i.e., formulas for describing the shape of the Earth; there are five major 
  30. spheroids in all), Geo Converter works only for the west longitudes of the northern
  31. hemisphere, that is, between the Aleutian Islands of Alaska to Greenwich, England, and
  32. between the equator and 84° N. This includes, of course, all of North America.
  33.  
  34. The UTM coordinate system is enjoying increasing popularity, especially among providers
  35. of emergency services who require a fast, accurate, and easily-communicated locational
  36. system. Land search and rescue teams in Canada, where UTM grid lines are drawn on topo
  37. maps of 1:50,000 scale and larger, commonly use the 6-digit abbreviations for eastings
  38. (distance in kilometers from the nearest central meridian, which is given a "false
  39. easting" value of 500 km in order to avoid negative numbers) and northings (distance from
  40. the equator). Maps in the U.S. are less commonly gridded by UTM, but UTM "ticks" are
  41. usually contained in the margins. Unfortunately, translating longs and lats to UTM by
  42. "eyeballing" and interpolating can be a time-consuming and error-prone process. The
  43. Waverley SAR team uses Geo Converter to translate long/lat coordinates received from
  44. rescue helicopter pilots who don't know UTM from UFO, and to convert long/lat readings
  45. from older GPS receivers not UTM literate. All search operations are referenced to 
  46. 6-digit UTM abbreviations, which are accurate to within 100 meters.
  47.  
  48. To convert from longs/lats to UTM, you have the option of entering degrees/minutes/
  49. seconds, or alternatively as degrees/percentage of a degree, or degrees/minutes/percentage 
  50. of a minute. For example, 60° 45´ 30´´(read "60 degrees, 45 minutes, 30 seconds") can be 
  51. entered as 60.4530, or as 60.7583, where the decimal fraction .7583 represents the 
  52. percentage of one degree contained in 45´ 30´´, or as 60/45.5, where .5 contains the
  53. percentage of one minute contained in 30´´ (don't forget to enter the slash after the number
  54. of degrees). The conversion yields a fairly accurate (double precision math) UTM coordinate in 
  55. kilometers, the UTM zone number, and the 6-digit abbreviation for the UTM. For example,
  56. the UTM coordinate for my office is approximately 453.81 (easting) and 4941.83 (northing),
  57. zone 20. This results in a 6-digit reference of 538 418, referring to the easting and
  58. northing respectively. Each 3-digit number is derived by dropping all but the last two
  59. numbers of the integer (in this case yielding 53 and 41) and adding one digit of the
  60. rounded-off percentage of the decimal fraction.
  61.  
  62. One feature of Geo Converter not found in similar programs is the ability to force the
  63. program to compute the UTM coordinates according to a specific zone number, rather than
  64. for the zone in which the location actually lies. Why would you want to do this?
  65. Some map sheets pertain to an area which overlaps two adjacent zones. Usually the UTM
  66. references are provided for both zones in such instances, but UTM grid lines may be
  67. determined not by the "dominant" zone (i.e., which zone has a larger representation on
  68. the map), but for purposes of continuity with adjacent maps. For example, more than 90%
  69. of Nova Scotia lies within zone 20. Topo maps of the far eastern tip of the province are
  70. gridded according to zone 20, even though most of that area lies within zone 21. UTM
  71. coordinates computed according to zone 20 maintain metric continuity with maps just to
  72. the west, although examination of these maps reveals a high disparity between true north 
  73. and grid north. Be sure to consult your map carefully before deciding to force the zone
  74. number.
  75.  
  76. When converting from UTM to longs/lats, you have the option of entering eastings and
  77. northings as meters or kilometers (the program defaults to kilometers). You must provide
  78. the full UTM coordinate (not the 6-digit abbreviation). You also need to enter the UTM
  79. zone number (1 - 30), which is usually found in the margin of your map. If you can't find
  80. it, the zone number can be computed by doing a "dummy" longs/lats to UTM conversion and
  81. entering any long/lat coordinates found on your map. The UTM conversion to longs/lats
  82. also provides the number of the central meridian, which will not usually be of much
  83. interest except as a way of catching some entry errors. For example, if you know that
  84. your central meridian is supposed to be 100, and you've entered the eastings and northings
  85. backwards (a common error), then you'll likely get a quite different central meridian.
  86.  
  87. CHANGES IN VERSION 1.1
  88. Added the option of entering lats/longs as degrees, minutes, and percentage of a minute.
  89. UTM-to-Long/Lat conversion displays degrees and percentage of a degree (decimal format), 
  90.     in additon to degrees/minutes/seconds (green text on color monitors).
  91. Added the ability to transfer the last conversion to the clipboard, pasteable to a text 
  92.     file.
  93. Minor cosmetic changes, including color text.
  94. Minor bug fixes. 
  95.  
  96. FUTURE ENHANCEMENTS:
  97. Conversions for other hemispheres.
  98. More spheroids.
  99. Batch processing.
  100. (Suggestions appreciated).
  101.  
  102. AUTHOR:
  103. Kenneth Hill, Ph.D.
  104. Department of Psychology
  105. Saint Mary's University
  106. Halifax, Nova Scotia, Canada B3H 3C3
  107. Email:  khill@husky1.stmarys.ca
  108.  
  109.  
  110.